undefinedTV/tsconfig.json

24 lines
493 B
JSON
Raw Permalink Normal View History

2020-12-20 21:47:53 +01:00
{
"compilerOptions": {
"target": "ES6",
"module": "ES6",
"esModuleInterop": true,
"experimentalDecorators": true,
"jsx": "preserve",
"strictFunctionTypes": true,
"sourceMap": true,
"removeComments": true,
"outDir": "./build/",
"lib": [
"dom",
"es6"
]
},
"include": [
"src/*.ts"
],
"exclude": [
"node_modules",
"**/node_modules/*"
]
}