formhero/tsconfig.json

25 lines
548 B
JSON
Raw Normal View History

2019-09-26 21:13:27 +02:00
{
"compilerOptions": {
2019-09-26 22:10:47 +02:00
"target": "es2017",
2019-09-26 21:13:27 +02:00
"module": "commonjs",
"jsx": "react",
"outDir": "./dist",
"declaration": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"include": [
"./lib"
]
}