funkwhale/front/tsconfig.json

34 wiersze
810 B
JSON
Czysty Zwykły widok Historia

2022-04-16 11:34:39 +00:00
{
"compilerOptions": {
"baseUrl": ".",
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "node",
2022-04-16 11:34:39 +00:00
"strict": true,
"jsx": "preserve",
"sourceMap": true,
2022-04-16 11:34:39 +00:00
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"skipLibCheck": true,
"lib": ["dom", "esnext", "webworker"],
"allowJs": true,
2022-04-16 11:34:39 +00:00
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"typeRoots": ["node_modules/@types"],
2022-04-16 11:34:39 +00:00
"types": [
"vite/client",
"vue/ref-macros",
"vue-gettext/types",
"vite-plugin-pwa/client"
2022-04-16 11:34:39 +00:00
],
"paths": {
2022-04-23 07:37:43 +00:00
"~/*": ["src/*"]
2022-04-16 11:34:39 +00:00
}
},
2022-05-02 15:06:44 +00:00
"include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.vue", "vite.config.ts"]
2022-04-16 11:34:39 +00:00
}