29 lines
642 B
JSON
29 lines
642 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2015",
|
|
"module": "es2015",
|
|
"moduleResolution": "node",
|
|
"declaration": false,
|
|
"removeComments": true,
|
|
"noLib": false,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"lib": ["es6", "es2015", "dom"],
|
|
"sourceMap": true,
|
|
"pretty": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitUseStrict": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"outDir": "./dist",
|
|
"types": [
|
|
]
|
|
},
|
|
"files": [
|
|
"src/main.ts",
|
|
"src/lazy.module.ts"
|
|
]
|
|
}
|