swaf/tsconfig.views.json

20 lines
380 B
JSON
Raw Normal View History

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