Surge_by_SukkaW/tsconfig.json
2024-05-02 00:52:02 +08:00

22 lines
484 B
JSON

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