31 lines
633 B
JSON
31 lines
633 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"sourceMap": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitAny": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es6",
|
|
"lib": [
|
|
"es5",
|
|
"es6"
|
|
],
|
|
"paths": {
|
|
"*": [
|
|
"node_modules/*",
|
|
"./types/*"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"include": [
|
|
"./**/*"
|
|
]
|
|
}
|