vanilje/tsconfig.json

14 lines
221 B
JSON
Raw Normal View History

{
2024-02-21 13:22:50 +13:00
"compilerOptions": {
"target": "es2020",
"module": "commonjs",
"outDir": "build/",
"esModuleInterop": true,
"strict": true
},
2024-02-21 13:22:50 +13:00
"include": [
"src/**/*",
"config.json"
]
}