You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
979 B
52 lines
979 B
6 months ago
|
{
|
||
|
"compilerOptions": {
|
||
|
"allowJs": true,
|
||
|
"baseUrl": "./",
|
||
|
"esModuleInterop": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"jsx": "preserve",
|
||
|
"lib": ["esnext", "dom"],
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"skipLibCheck": true,
|
||
|
"sourceMap": true,
|
||
|
"strict": true,
|
||
|
"strictFunctionTypes": false,
|
||
|
"target": "esnext",
|
||
|
"types": ["vite/client"],
|
||
|
"typeRoots": [
|
||
|
"node_modules/@types",
|
||
|
"node_modules/@vue",
|
||
|
"type"
|
||
|
],
|
||
|
"paths": {
|
||
|
"/@/*": [
|
||
|
"src/*"
|
||
|
],
|
||
|
"/nerv-lib/*": [
|
||
|
"lib/*"
|
||
|
],
|
||
|
"/nerv-base/*": [
|
||
|
"lib/saas/*"
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"include": [
|
||
|
"lib/**/*",
|
||
|
"src/**/*",
|
||
|
"type/**/*",
|
||
|
"mock/**/*",
|
||
|
"vite.config.ts"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"dist",
|
||
|
"**/*.js"
|
||
|
]
|
||
|
}
|
||
|
|