mirror of
https://github.com/SukkaW/Surge.git
synced 2025-12-12 01:00:34 +08:00
22 lines
476 B
JSON
22 lines
476 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"moduleDetection": "force",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"types": ["bun-types"],
|
|
"allowImportingTsExtensions": true,
|
|
"allowJs": true,
|
|
"noEmit": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"./Source/**/*.js",
|
|
"./Build/**/*.ts",
|
|
"Source/**/*.ts"
|
|
]
|
|
}
|