mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2024-11-22 09:25:46 +03:00
e399f82ac4
executing WASM
42 lines
984 B
JSON
42 lines
984 B
JSON
{
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"target": "es2020",
|
|
"module": "es2020",
|
|
"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",
|
|
"**/*.test.ts",
|
|
"tmp"
|
|
]
|
|
}
|