CADViewComponent/tsconfig.json

25 lines
494 B
JSON
Raw Normal View History

{
2018-05-25 11:09:15 +08:00
"compileOnSave": true,
"compilerOptions": {
2018-05-25 11:09:15 +08:00
"sourceMap": true,
"declaration": true,
"outDir": "./dist",
2020-05-07 10:51:27 +08:00
"target": "esnext",
"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",
"webpack-dev-server"
],
"module": "commonjs",
"experimentalDecorators": true
},
"include": [
2018-08-17 17:39:11 +08:00
"./src/**/*",
// "./config/**/*"
]
}