survey/tsconfig.json
Aravinth Manivannan 2609ade2a5
Setup ts compilation
- import frontend code from mCaptcha/benchs
- setup TS compilation workflow
- import vendor code from mCaptcha/mCaptcha/browser
- rewrite bench.js import in bundle.js to include file's hash
2021-10-12 14:02:34 +05:30

44 lines
976 B
JSON

{
"compilerOptions": {
"incremental": true,
"target": "es5",
"module": "es6",
"allowJs": false,
"sourceMap": true,
"outDir": "./dist/",
"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",
"**/*.test.ts",
"tmp",
"dist/"
]
}