2022-02-10 12:07:06 -08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-05-14 19:53:08 +08:00
|
|
|
"lib": ["es2023"],
|
|
|
|
"module": "nodenext",
|
|
|
|
"moduleResolution": "nodenext",
|
|
|
|
"target": "es2022",
|
|
|
|
"strict": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"outDir": ".dest",
|
|
|
|
"rootDir": ".",
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
"resolvePackageJsonImports": true,
|
2022-02-10 12:07:06 -08:00
|
|
|
"esModuleInterop": true,
|
2024-05-14 19:53:08 +08:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"resolveJsonModule": true
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"gulpfile.ts",
|
|
|
|
"globals.ts",
|
|
|
|
"buildConfig.ts",
|
|
|
|
"tasks/**/*",
|
|
|
|
"types/**/*",
|
|
|
|
"utils/**/*"
|
|
|
|
]
|
|
|
|
}
|