mCaptcha/tsconfig.json

43 lines
984 B
JSON
Raw Normal View History

2021-05-01 13:52:44 +00:00
{
2021-05-06 03:58:44 +00:00
"compilerOptions": {
"incremental": true,
"target": "es2020",
"module": "es2020",
2021-05-06 03:58:44 +00:00
"allowJs": false,
"sourceMap": true,
"outDir": "./static-assets/bundle",
"rootDir": "./templates/",
"removeComments": true,
"moduleResolution": "node",
//"strict": true,
"noImplicitAny": true,
//"strictNullChecks": true,
//"strictFunctionTypes": true,
//"strictBindCallApply": true,
//"strictPropertyInitialization": true,
//"noImplicitThis": true,
//"alwaysStrict": true,
//"noUnusedLocals": true,
//"noUnusedParameters": true,
//"noImplicitReturns": true,
//"noFallthroughCasesInSwitch": true,
//"noUncheckedIndexedAccess": true,
//"noPropertyAccessFromIndexSignature": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"exclude": [
"node_modules",
"static",
"docs",
"jest.config.ts",
2021-05-07 09:51:27 +00:00
"**/*.test.ts",
"tmp"
2021-05-06 03:58:44 +00:00
]
2021-05-01 13:52:44 +00:00
}