This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
vogue/tsconfig.json

16 lines
313 B
JSON
Raw Normal View History

2021-05-20 00:19:25 -04:00
{
"compilerOptions": {
"module": "esnext",
"moduleResolution": "node",
"strict": true,
2021-05-20 20:34:50 -04:00
"allowSyntheticDefaultImports": true,
"target": "esnext",
"outDir": "out",
"sourceMap": true,
2021-05-23 17:39:02 -04:00
"declaration": true,
"pretty": true
2021-05-20 00:19:25 -04:00
},
"include": [
"src/**/*.ts"
]
}