diff2html/tsconfig.json

31 lines
934 B
JSON
Raw Normal View History

{
"compilerOptions": {
"outDir": "./build/commonjs-node",
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
2019-10-12 21:45:49 +00:00
"lib": ["es5", "es6", "es7", "esnext", "dom", "dom.iterable"],
// TODO: Change to true after migration to TS is complete
"allowJs": true,
"declaration": false,
"declarationMap": false,
/////////////////////////////////////////////////////////
"strictNullChecks": true,
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true,
"alwaysStrict": true,
"strict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
2019-10-12 21:45:49 +00:00
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true
},
2019-10-12 21:45:49 +00:00
"include": ["./src/**/*", "./typings/**/*"],
"exclude": ["node_modules", "./src/__tests__/*"]
}