2021-09-14 14:50:57 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
2022-10-20 05:37:02 +08:00
|
|
|
"noUnusedLocals": false,
|
2021-09-14 14:50:57 +08:00
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2024-08-15 09:22:33 +08:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2021-09-14 14:50:57 +08:00
|
|
|
"declaration": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"incremental": true,
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
"inlineSources": true,
|
|
|
|
"preserveSymlinks": true,
|
|
|
|
"removeComments": false,
|
2022-08-26 18:34:54 +08:00
|
|
|
"skipLibCheck": true,
|
2024-02-17 18:00:18 +08:00
|
|
|
// target Node.js 12 https://node.green/#ES2019
|
|
|
|
"lib": ["ES2019", "dom"],
|
2023-05-25 14:48:26 +08:00
|
|
|
"target": "ESNext",
|
2021-09-14 14:50:57 +08:00
|
|
|
"allowJs": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
2023-05-25 15:17:16 +08:00
|
|
|
"module": "ESNext",
|
2021-09-14 14:50:57 +08:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"importHelpers": false,
|
2021-09-14 16:13:29 +08:00
|
|
|
"outDir": "./dist"
|
2021-09-14 14:50:57 +08:00
|
|
|
},
|
2021-09-14 16:13:29 +08:00
|
|
|
"compileOnSave": false,
|
2023-07-20 17:58:51 +08:00
|
|
|
"include": [
|
|
|
|
"./src",
|
|
|
|
"dev/scripts",
|
|
|
|
"packages/untildify-user/untildify.ts",
|
2024-03-24 15:20:20 +08:00
|
|
|
"dev/docker/ci/docker-ci.mjs",
|
2024-08-15 09:22:33 +08:00
|
|
|
"./jest.config.ts",
|
|
|
|
"packages/os-env/src/escape-quotes.d.ts"
|
2023-07-20 17:58:51 +08:00
|
|
|
]
|
2021-09-14 14:50:57 +08:00
|
|
|
}
|