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
624 B

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