CADViewComponent/tsconfig.json

28 lines
583 B
JSON
Raw Normal View History

{
"compilerOptions": {
"outDir": "./dist",
2022-02-16 13:48:57 +08:00
"sourceMap": true,
"module": "commonjs",
"target": "es2020",
"noLib": false,
"moduleResolution": "node",
"skipLibCheck": true,
"esModuleInterop": true,
"lib": [
2018-08-17 17:39:11 +08:00
"esnext",
"dom"
],
"types": [
2018-08-17 17:39:11 +08:00
"node",
2018-08-17 21:26:32 +08:00
"webpack-env",
2022-02-16 13:48:57 +08:00
"webpack-dev-server",
],
2022-02-16 13:48:57 +08:00
"jsx": "react",
"experimentalDecorators": true
},
"include": [
2018-08-17 17:39:11 +08:00
"./src/**/*",
2022-02-16 13:48:57 +08:00
"./config/**/*"
]
}