mirror of
https://github.com/YuzuZensai/TrollSSH.git
synced 2026-09-13 20:49:03 +00:00
16 lines
414 B
JSON
16 lines
414 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "node16",
|
|
"moduleResolution": "node16",
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["src/**/*.test.ts", "node_modules", "dist"]
|
|
}
|