hadean-old/tsconfig.json

18 lines
326 B
JSON
Raw Normal View History

2021-06-14 22:03:55 -04:00
{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true,
"outDir": "out",
"declaration": true,
"sourceMap": true,
"paths": {
"@theme": ["./src/ui/Theme"]
}
2021-06-14 22:03:55 -04:00
},
"include": [
"src/**/*.ts",
"content/**/*.ts"
2021-06-14 22:03:55 -04:00
]
}