re-nav/tsconfig.json

20 lines
321 B
JSON
Raw Permalink Normal View History

2022-10-05 10:25:58 +00:00
{
"compilerOptions": {
"esModuleInterop": true,
"lib": [
"ESNext"
],
"module": "ESNext",
"moduleResolution": "Node",
"noEmit": true,
"outDir": "build",
"strict": true,
"target": "ESNext"
},
"include": [
"source/**/*.ts",
2022-10-05 13:07:07 +00:00
"tests/**/*.ts",
2022-10-05 10:25:58 +00:00
"vite.config.ts"
]
2022-10-05 10:25:58 +00:00
}