36 lines
852 B
JSON
36 lines
852 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"target": "esnext",
|
|
"useDefineForClassFields": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"lib": ["dom", "esnext", "webworker"],
|
|
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"typeRoots": ["node_modules/@types"],
|
|
"types": [
|
|
"vite/client",
|
|
"vue/ref-macros",
|
|
"vue-gettext/types",
|
|
"vite-plugin-pwa/client"
|
|
],
|
|
"paths": {
|
|
"~/*": ["src/*"]
|
|
}
|
|
},
|
|
"vueCompilerOptions": {
|
|
"experimentalCompatMode": 2
|
|
},
|
|
"include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.vue", "vite.config.ts"]
|
|
}
|