31 lines
707 B
JSON
31 lines
707 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "preserve",
|
|
"lib": ["esnext", "dom"],
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"importsNotUsedAsValues": "error",
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": false,
|
|
"strict": true,
|
|
"stripInternal": true,
|
|
"target": "esnext",
|
|
"types": [
|
|
"vite/client",
|
|
"unplugin-icons/types/vue",
|
|
"vite-plugin-pages/client"
|
|
]
|
|
},
|
|
"include": [
|
|
"backend/**/*.ts",
|
|
"shared/**/*.ts",
|
|
"frontend/**/*.ts",
|
|
"frontend/**/*.vue"
|
|
]
|
|
}
|