clippable/ts/tsconfig.json
shockrah 8fa283f606 * Moving frontend TS to its own root dir
Knowing that  some pepople(myself) don't like JS this is to keep
any potential JS as non-hidden as possible
2021-10-10 13:24:49 -07:00

28 lines
711 B
JSON

{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"outDir": "../api/static/js/",
"importHelpers": true,
/* Strict Type-Checking Options */
"strict": true,
"strictNullChecks": false,
"strictFunctionTypes": true,
"noImplicitThis": true,
"alwaysStrict": true,
/* Additional Checks */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
/*"noUncheckedIndexedAccess": true, */
/*"noPropertyAccessFromIndexSignature": true, */
/* Module Resolution Options */
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
}
}