25 lines
528 B
JSON
25 lines
528 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./src",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"removeComments": true,
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"preserveConstEnums": false,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"lib": ["es2017", "dom"],
|
|
"plugins": [
|
|
{
|
|
"name": "typescript-tslint-plugin"
|
|
}
|
|
],
|
|
"rootDir": "src",
|
|
"outDir": "dist"
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|