starbase-81/tsconfig.json

13 lines
270 B
JSON
Raw Permalink 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-18 20:21:08 +00:00
"include": ["src/index.ts", "src/css-cache-break.ts"]
2023-04-19 21:40:25 +00:00
}