datacap/core/datacap-web/tsconfig.json
2023-06-10 14:42:19 +08:00

44 lines
897 B
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
// "strict": true,
"jsx": "preserve",
"moduleResolution": "node",
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": true,
"sourceMap": true,
"resolveJsonModule": true,
// Property '...' has no initializer and is not definitely assigned in the constructor
"strictPropertyInitialization": false,
"baseUrl": "./",
"types": [
"webpack-env"
],
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
]
}