Surge_by_SukkaW/tsconfig.json
2025-05-21 09:52:17 +08:00

27 lines
575 B
JSON

{
"compilerOptions": {
"target": "esnext",
"lib": ["ESNext", "ESNext.Iterator"],
"moduleDetection": "force",
"module": "esnext",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"allowJs": true,
"noEmit": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"strictNullChecks": true,
"skipLibCheck": true
},
"include": [
"./Source/**/*.js",
"./Build/**/*.ts",
"./Source/**/*.ts"
],
"exclude": [
"node_modules",
"public"
]
}