23 lines
591 B
JSON
23 lines
591 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"target": "ES2017",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "Node",
|
|
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"alwaysStrict": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
// "noImplicitAny": true, // enabled on strict mode
|
|
"noImplicitReturns": true,
|
|
// "noImplicitThis": true, // enabled on strict mode
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strict": true
|
|
},
|
|
// "files": ["src/index.ts"],
|
|
"include": ["src/**/*"]
|
|
}
|