Files
afilmory/packages/builder/tsconfig.json
Innei 491e8ddb6e fix: type error
Signed-off-by: Innei <tukon479@gmail.com>
2025-06-11 00:44:54 +08:00

42 lines
837 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"skipDefaultLibCheck": true,
"noImplicitAny": false,
"noEmit": true,
"jsx": "preserve",
"paths": {
"@photo-gallery/builder/*": [
"./src/*"
],
"@pkg": [
"./package.json"
],
"@builder": [
"../../builder.config.ts"
],
"@env": [
"../../env.ts"
]
},
},
"include": [
"./src/**/*",
"./scripts/**/*"
]
}