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

26 lines
531 B

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