Surge_by_SukkaW/tsconfig.json
2024-08-04 23:00:47 +08:00

23 lines
501 B
JSON

{
"compilerOptions": {
"target": "esnext",
"lib": ["ESNext"],
"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"
]
}