1
Fork 0
holllo-org/tsconfig.json

15 lines
243 B
JSON
Raw Permalink Normal View History

2022-03-27 21:21:21 +00:00
{
"compilerOptions": {
"esModuleInterop": true,
2024-01-17 14:19:15 +00:00
"module": "ES2022",
2022-03-27 21:21:21 +00:00
"moduleResolution": "Node",
"noEmit": true,
"outDir": "build",
"strict": true,
2024-01-17 14:19:15 +00:00
"target": "ES2022"
2022-03-27 21:21:21 +00:00
},
"include": [
2024-01-17 14:19:15 +00:00
"source/**/*.ts"
2022-03-27 21:21:21 +00:00
]
}