1
0
Fork 0
mirror of https://github.com/imjasonh/gots synced 2026-07-08 09:05:45 +00:00
gots/frontend/tsconfig.json
Jason Hall 0c84c06bb7 initial commit
Signed-off-by: Jason Hall <jason@chainguard.dev>
2025-08-30 20:38:34 -04:00

15 lines
No EOL
344 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "node",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}