20 lines
316 B
JSON
20 lines
316 B
JSON
|
{
|
||
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
||
|
"compilerOptions": {
|
||
|
"outDir": "public/js",
|
||
|
"rootDir": "./views",
|
||
|
"target": "ES6",
|
||
|
"strict": true,
|
||
|
"lib": [
|
||
|
"es2020",
|
||
|
"DOM"
|
||
|
],
|
||
|
"typeRoots": [
|
||
|
"./node_modules/@types"
|
||
|
]
|
||
|
},
|
||
|
"include": [
|
||
|
"assets/ts/**/*"
|
||
|
]
|
||
|
}
|