mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2024-11-23 01:45:50 +03:00
tsconfig
This commit is contained in:
parent
6184fe7efe
commit
dc982c31c6
1 changed files with 39 additions and 3 deletions
|
@ -1,5 +1,41 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"sourceMap": true
|
||||
}
|
||||
"compilerOptions": {
|
||||
"incremental": true,
|
||||
"target": "es5",
|
||||
"module": "es6",
|
||||
"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"
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue