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,
|
|
|
|
"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,
|
2022-08-08 07:59:24 +08:00
|
|
|
"lib": ["ES2020", "dom"],
|
|
|
|
"target": "ES2020",
|
2021-09-14 14:50:57 +08:00
|
|
|
"allowJs": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
2022-07-06 12:19:58 +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,
|
2022-10-20 11:12:32 +08:00
|
|
|
"include": ["./src", "dev/scripts", "packages/untildify-user/untildify.ts"]
|
2021-09-14 14:50:57 +08:00
|
|
|
}
|