25 lines
545 B
JSON
25 lines
545 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"module": "CommonJS",
|
|
"target": "es2021",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"downlevelIteration": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"resolveJsonModule": true,
|
|
"outDir": "tmp",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@spt-aki/*": ["./types/*"]
|
|
}
|
|
},
|
|
"lib": [
|
|
"es2020"
|
|
],
|
|
"include": [
|
|
"src/*",
|
|
"src/**/*"
|
|
]
|
|
} |