Surge_by_SukkaW/tsconfig.json
2024-06-03 11:56:11 +08:00

22 lines
471 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,
"skipLibCheck": true
},
"include": [
"./Source/**/*.js",
"./Build/**/*.ts",
"Source/**/*.ts"
]
}