old.nicco.io/tsconfig.json

19 lines
449 B
JSON
Raw Normal View History

2019-03-03 16:13:57 +01:00
{
"compilerOptions": {
2019-08-24 09:59:59 +02:00
"target": "esnext",
"module": "esnext",
"jsx": "react",
"rootDir": "./src",
"removeComments": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"moduleResolution": "node",
"esModuleInterop": true
2019-03-03 16:13:57 +01:00
}
}