staxman-old/tsconfig.json

22 lines
298 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"paths": {
"/static/*": [
"./static/*"
],
},
"lib": [
"ES2022",
"DOM"
],
"rootDir": "./",
"baseUrl": "./",
"strictNullChecks": true,
"declaration": true
},
"include": [
"./static/**/*.ts",
"./static/**/*.d.ts"
]
}