funkwhale/front/tsconfig.json

34 wiersze
763 B
JSON

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