mirror of
https://gitee.com/orangeform/orange-admin.git
synced 2026-01-17 10:36:31 +08:00
39 lines
858 B
JSON
39 lines
858 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": false,
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowJs": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"useDefineForClassFields": true,
|
|
"sourceMap": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@": ["src"],
|
|
"@/*": ["src/*"]
|
|
},
|
|
"types": [
|
|
"webpack-env"
|
|
],
|
|
"lib": [
|
|
"esnext",
|
|
"dom",
|
|
"dom.iterable",
|
|
"scripthost"
|
|
]
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
|
|
"exclude": [
|
|
"node_modules",
|
|
// "src/components"
|
|
]
|
|
// "references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|