24 lines
570 B
JSON
24 lines
570 B
JSON
{
|
|
"include": ["src/**/*"],
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"outDir": "./lib",
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
// "esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"lib": ["es2015"],
|
|
"forceConsistentCasingInFileNames": true,
|
|
"newLine": "LF",
|
|
"noEmitOnError": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
// "noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strictNullChecks": true
|
|
}
|
|
}
|