21 lines
483 B
JSON
21 lines
483 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES6",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"outDir": "out",
|
|
"esModuleInterop": true,
|
|
"lib": ["es6"],
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"rootDir": "src",
|
|
"strictNullChecks": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false
|
|
},
|
|
"exclude": ["node_modules", "out", "vendor"]
|
|
}
|