is/tsconfig.json

28 lines
578 B
JSON
Raw Normal View History

2017-11-06 16:26:59 +01:00
{
2017-11-06 22:36:51 +07:00
"compilerOptions": {
2017-11-07 10:23:00 +07:00
"outDir": "dist",
2017-11-06 22:36:51 +07:00
"target": "es2015",
2017-11-07 10:23:00 +07:00
"module": "commonjs",
2017-11-06 22:36:51 +07:00
"moduleResolution": "node",
"declaration": true,
2017-11-07 10:23:00 +07:00
"pretty": true,
"newLine": "lf",
"stripInternal": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
2018-02-01 08:41:13 +07:00
"strictPropertyInitialization": true,
"alwaysStrict": true,
"esModuleInterop": true
2017-11-07 10:23:00 +07:00
},
"exclude": [
"node_modules",
"dist"
]
2017-11-06 16:26:59 +01:00
}