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