starbase-81/tsconfig.json

13 lines
245 B
JSON
Raw Normal View History

2023-04-19 21:40:25 +00:00
{
2023-04-20 02:31:29 +00:00
"compilerOptions": {
"target": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"outDir": "./dist",
2023-04-20 02:31:29 +00:00
"strict": true,
"esModuleInterop": true,
2023-12-16 22:03:25 +00:00
"resolveJsonModule": true,
"module": "CommonJS"
2023-04-20 02:31:29 +00:00
},
2023-12-16 22:12:06 +00:00
"include": ["src/static.ts"]
2023-04-19 21:40:25 +00:00
}