swaf/tsconfig.views.json

20 lines
316 B
JSON
Raw Normal View History

2021-03-18 16:22:25 +01:00
{
"extends": "@tsconfig/svelte/tsconfig.json",
"compilerOptions": {
"outDir": "public/js",
2021-03-24 16:07:50 +01:00
"rootDir": "./build",
2021-03-18 16:22:25 +01:00
"target": "ES6",
"strict": true,
"lib": [
"es2020",
"DOM"
],
"typeRoots": [
"./node_modules/@types"
]
},
"include": [
"assets/ts/**/*"
]
}