2022-02-12 02:02:21 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-11-15 19:47:47 +08:00
|
|
|
"target": "ES6",
|
|
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
|
|
"module": "CommonJS",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"types": ["jquery", "select2", "node"],
|
|
|
|
"allowUmdGlobalAccess": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"outDir": "./build",
|
|
|
|
"newLine": "lf",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"useUnknownInCatchVariables": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"exactOptionalPropertyTypes": false,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUncheckedIndexedAccess": false,
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"skipLibCheck": true
|
2022-02-12 02:02:21 +08:00
|
|
|
},
|
|
|
|
"include": ["./src/**/*.ts"],
|
2022-04-24 23:20:30 +08:00
|
|
|
"files": ["src/ts/modules.d.ts"]
|
2022-02-12 02:02:21 +08:00
|
|
|
}
|