WebEditor/tsconfig.json
Matthew Welch 80847801f4 Changed to TypeScript
Moved third party files to separate folder
2021-01-23 16:01:19 -08:00

17 lines
343 B
JSON

{
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"removeComments": true,
"noImplicitAny": false,
"suppressImplicitAnyIndexErrors": true,
"lib": [
"ES6",
"DOM"
],
"outDir": "./build",
},
"exclude": [ "node_modules", "out" ],
}