Surge_by_SukkaW/tsconfig.json
2023-11-15 22:45:59 +08:00

23 lines
509 B
JSON

{
"compilerOptions": {
"composite": true,
"target": "esnext",
"moduleDetection": "force",
"module": "esnext",
"moduleResolution": "bundler",
"types": ["bun-types"],
"allowImportingTsExtensions": true,
"allowJs": true,
"noEmit": true,
"downlevelIteration": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
},
"include": [
"./Source/**/*.js",
"./Build/**/*.ts"
]
}