2020-09-28 20:19:10 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-01-19 22:33:18 +08:00
|
|
|
"target": "esnext",
|
2020-09-28 20:19:10 +08:00
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strictFunctionTypes": false,
|
2021-01-03 10:42:19 +08:00
|
|
|
"jsx": "preserve",
|
2020-09-28 20:19:10 +08:00
|
|
|
"baseUrl": ".",
|
|
|
|
"allowJs": true,
|
2020-10-29 22:29:46 +08:00
|
|
|
"sourceMap": true,
|
2020-09-28 20:19:10 +08:00
|
|
|
"esModuleInterop": true,
|
2021-02-05 22:13:19 +08:00
|
|
|
"resolveJsonModule": true,
|
2020-09-28 20:19:10 +08:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"experimentalDecorators": true,
|
2020-12-23 21:43:06 +08:00
|
|
|
"lib": ["dom", "esnext"],
|
2021-01-10 20:44:39 +08:00
|
|
|
"types": ["vite/client"],
|
2021-02-26 20:09:24 +08:00
|
|
|
"typeRoots": ["./node_modules/@types/", "./types"],
|
2020-09-28 20:19:10 +08:00
|
|
|
"incremental": true,
|
2021-02-06 22:54:52 +08:00
|
|
|
"noImplicitAny": false,
|
2020-09-28 20:19:10 +08:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"paths": {
|
2021-02-26 20:09:24 +08:00
|
|
|
"/@/*": ["src/*"],
|
|
|
|
"/#/*": ["types/*"]
|
2020-09-28 20:19:10 +08:00
|
|
|
}
|
|
|
|
},
|
2021-02-26 20:09:24 +08:00
|
|
|
"include": [
|
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.d.ts",
|
|
|
|
"src/**/*.tsx",
|
|
|
|
"src/**/*.vue",
|
|
|
|
"types/**/*.d.ts",
|
|
|
|
"types/**/*.ts",
|
|
|
|
"mock/**/*.ts"
|
|
|
|
],
|
2020-12-23 21:43:06 +08:00
|
|
|
"exclude": ["node_modules", "dist", "**/*.js"]
|
2020-09-28 20:19:10 +08:00
|
|
|
}
|