22 lines
299 B
JSON
22 lines
299 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "esnext",
|
||
|
"paths": {
|
||
|
"/static/*": [
|
||
|
"./static/*"
|
||
|
],
|
||
|
},
|
||
|
"lib": [
|
||
|
"ESNext",
|
||
|
"DOM"
|
||
|
],
|
||
|
"rootDir": "./",
|
||
|
"baseUrl": "./",
|
||
|
"strictNullChecks": true,
|
||
|
"declaration": true,
|
||
|
},
|
||
|
"include": [
|
||
|
"./static/**/*.ts",
|
||
|
"./static/**/*.d.ts"
|
||
|
]
|
||
|
}
|