functional/tsconfig.json

22 lines
380 B
JSON
Raw Normal View History

2019-09-16 18:20:42 +00:00
{
"compilerOptions": {
2019-09-22 21:05:33 +00:00
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true,
2019-09-16 18:20:42 +00:00
"noImplicitReturns": true,
2019-09-22 21:05:33 +00:00
"noFallthroughCasesInSwitch": true,
2019-09-16 18:20:42 +00:00
"preserveConstEnums": true,
"declaration": true,
2019-09-22 21:05:33 +00:00
"target": "es6",
2019-09-16 18:20:42 +00:00
"lib": [
"dom",
"es6"
2019-09-22 21:05:33 +00:00
]
2019-10-17 20:51:42 +00:00
},
"exclude": [
"node_modules",
"dist",
"src/**/*.test.ts"
]
2019-09-16 18:20:42 +00:00
}