-
Alexander Rose authoredAlexander Rose authored
tsconfig.json 522 B
{
"compilerOptions": {
"declaration": true,
"target": "es5",
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"sourceMap": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
// "downlevelIteration": true,
"jsx": "react",
"lib": [ "es6", "dom", "esnext.asynciterable", "es2016" ],
"rootDir": "src",
"outDir": "lib"
},
"include": [ "src/**/*" ]
}