gf-vben-admin/tsconfig.json

45 lines
1.0 KiB
JSON
Raw Normal View History

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,
2021-11-10 22:12:10 +08:00
"noLib": false,
2020-09-28 20:19:10 +08:00
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"strictFunctionTypes": false,
"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,
"lib": ["dom", "esnext"],
2021-02-06 22:54:52 +08:00
"noImplicitAny": false,
2020-09-28 20:19:10 +08:00
"skipLibCheck": true,
"types": ["vite/client"],
2021-11-10 22:12:10 +08:00
"removeComments": true,
2020-09-28 20:19:10 +08:00
"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": [
2021-06-17 22:56:21 +08:00
"tests/**/*.ts",
2021-02-26 20:09:24 +08:00
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"types/**/*.d.ts",
"types/**/*.ts",
2021-03-23 23:03:29 +08:00
"build/**/*.ts",
"build/**/*.d.ts",
2021-04-05 22:23:39 +08:00
"mock/**/*.ts",
"vite.config.ts"
2021-02-26 20:09:24 +08:00
],
2021-06-26 23:56:57 +08:00
"exclude": ["node_modules", "tests/server/**/*.ts", "dist", "**/*.js"]
2020-09-28 20:19:10 +08:00
}