32 lines
907 B
JSON
32 lines
907 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strictFunctionTypes": false,
|
|
"jsx": "preserve",
|
|
"baseUrl": ".",
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitAny": false,
|
|
"skipLibCheck": true,
|
|
"typeRoots": ["./node_modules/@types/", "./types"],
|
|
"types": ["vite/client"],
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "preview/**/*.vue"],
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|