screenFront/tsconfig.json

43 lines
833 B
JSON
Raw Permalink Normal View History

2023-05-12 08:41:33 +00:00
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": false, //严格模式
"jsx": "preserve",
"moduleResolution": "node",
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": true,
//"suppressImplicitAnyIndexErrors": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"webpack-env"
],
"paths": {
"@": ["./src"],
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"src/**/*.json",
"tests/**/*.ts",
"tests/**/*.tsx" ],
"exclude": [
"node_modules"
]
}