mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-04 07:27:41 +08:00
54 lines
1.0 KiB
JSON
54 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": false,
|
|
"jsx": "preserve",
|
|
"importHelpers": true,
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"allowJs": true,
|
|
"resolveJsonModule": true, // 包含导入的模块。json的扩展
|
|
"lib": [
|
|
"dom",
|
|
"esnext"
|
|
],
|
|
"incremental": true,
|
|
"paths": {
|
|
"/@/*": [
|
|
"src/*"
|
|
],
|
|
"/#/*": [
|
|
"types/*"
|
|
]
|
|
},
|
|
"types": [
|
|
"node"
|
|
],
|
|
"typeRoots": [
|
|
"./node_modules/@types/",
|
|
"./types"
|
|
],
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"tests/**/*.ts",
|
|
"src/utils/path.js",
|
|
"types/**/*.d.ts",
|
|
"types/**/*.ts",
|
|
"types/shims-tsx.d.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"**/*.js"
|
|
],
|
|
} |