funkwhale/front/tsconfig.json

35 wiersze
774 B
JSON
Czysty Zwykły widok Historia

2022-04-16 11:34:39 +00:00
{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "ESNext",
"lib": ["DOM", "ESNext"],
"strict": true,
"esModuleInterop": true,
"jsx": "preserve",
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"typeRoots": [
"node_modules/@types"
],
2022-04-16 11:34:39 +00:00
"types": [
"vite/client",
"vue/ref-macros",
"unplugin-vue2-script-setup/types",
"vue-gettext/types"
2022-04-16 11:34:39 +00:00
],
"paths": {
"~/*": ["src/*"],
2022-04-16 11:34:39 +00:00
"@/*": ["src/*"]
}
},
"vueCompilerOptions": {
"experimentalCompatMode": 2
},
2022-04-16 11:34:39 +00:00
"include": ["src/*.d.ts", "src/**/*.ts", "src/**/*.vue"]
}