script-graph/tsconfig.json
2020-08-21 11:32:09 +02:00

19 lines
335 B
JSON

{
"compilerOptions": {
"target": "es6",
"module": "ESNext",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules"
]
}