22 lines
516 B
JSON
Raw Normal View History

{
"compilerOptions": {
"allowJs": true,
"module": "CommonJS",
2023-10-15 15:58:34 +01:00
"target": "ES2022",
"moduleResolution": "Node10",
"esModuleInterop": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"outDir": "tmp",
"baseUrl": ".",
"paths": {
"@spt-aki/*": ["./types/*"]
}
},
"include": [
"src/*",
"src/**/*"
]
}