You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
WebCAD/tsconfig.json

30 lines
625 B

{
"compilerOptions": {
"sourceMap": true,
"module": "commonjs",
"target": "esnext",
"noLib": false,
"moduleResolution": "node",
"skipLibCheck": true,
"esModuleInterop": true,
"lib": [
"esnext",
"dom"
],
"types": [
"node",
"webpack-env",
"webpack-dev-server",
"jest"
],
"jsx": "react",
"experimentalDecorators": true
},
"include": [
"./src/**/*",
"./utils/**/*",
"./__test__/**/*",
"./config/**/*"
]
}