erratic-gate/tsconfig.json

32 lines
651 B
JSON
Raw Normal View History

2019-03-06 09:25:58 +01:00
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"*": [
"types/*"
]
},
2019-06-02 22:06:25 +02:00
"module": "esnext",
"target": "esnext",
2019-03-06 09:25:58 +01:00
"removeComments": true,
"sourceMap": true,
"lib": [
"es2015",
"es2017",
"dom"
],
"noImplicitAny": true,
"alwaysStrict": true,
2019-05-22 21:43:04 +02:00
"moduleResolution": "Node",
"experimentalDecorators": true,
"esModuleInterop": true
2019-03-06 09:25:58 +01:00
},
"include": [
"src/**/*.ts",
"deploy.ts"
2019-03-06 09:25:58 +01:00
],
"exclude": [
"node_modules",
"dist"
2019-03-06 09:25:58 +01:00
]
}