rainbox.email/tsconfig.frontend.json

20 lines
302 B
JSON
Raw Normal View History

2020-09-23 13:30:48 +02:00
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "public/js",
"rootDir": "./assets",
2020-09-23 13:30:48 +02:00
"target": "ES6",
"strict": true,
"lib": [
"es2020",
"DOM"
],
"typeRoots": [
"./node_modules/@types"
]
},
"include": [
"assets/ts/**/*"
]
}