staxman-old/tsconfig.json

22 lines
298 B
JSON
Raw Permalink Normal View History

2023-11-30 09:14:32 +00:00
{
"compilerOptions": {
2023-12-03 16:57:12 +00:00
"target": "ES2022",
2023-11-30 09:14:32 +00:00
"paths": {
"/static/*": [
"./static/*"
],
},
"lib": [
2023-12-03 16:57:12 +00:00
"ES2022",
2023-11-30 09:14:32 +00:00
"DOM"
],
"rootDir": "./",
"baseUrl": "./",
"strictNullChecks": true,
2023-12-03 16:57:12 +00:00
"declaration": true
2023-11-30 09:14:32 +00:00
},
"include": [
"./static/**/*.ts",
"./static/**/*.d.ts"
]
}