mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 08:46:22 +02:00
17 lines
357 B
JSON
17 lines
357 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "commonjs",
|
||
|
|
"lib": ["ES2022"],
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": "./src",
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"noEmit": true
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts"],
|
||
|
|
"exclude": ["node_modules", "dist", "scripts"]
|
||
|
|
}
|