RenaiApp/tsconfig.json

23 lines
484 B
JSON
Raw Normal View History

2019-06-08 00:36:44 +02:00
{
"compilerOptions": {
"baseUrl": "./src",
2019-06-08 00:36:44 +02:00
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
"noImplicitAny": true,
2019-06-08 00:36:44 +02:00
"removeComments": true,
"sourceMap": true,
"allowJs": true,
"preserveConstEnums": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
2019-06-16 03:39:33 +02:00
"lib": ["es2017", "dom"],
"plugins": [
{
"name": "typescript-tslint-plugin"
}
]
},
"include": ["src/**/*"]
2019-06-08 00:36:44 +02:00
}