aishandong/aishangdong/tsconfig.json

46 lines
852 B
JSON
Raw Permalink Normal View History

2025-04-29 09:38:12 +08:00
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"suppressImplicitAnyIndexErrors":true,
"sourceMap": true,
"outDir": ".js",
"baseUrl": ".",
"types": [
"node",
"webpack-env",
],
"typeRoots": ["node_modules/@types", "typings"],
"paths": {
"@/*": [
"src/*"
],
"config": [
"config/index.js"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
],
"exclude": [
"node_modules"
]
}