31 lines
No EOL
560 B
JSON
31 lines
No EOL
560 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "es2020",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "es2022",
|
|
"noImplicitAny": false,
|
|
"moduleResolution": "node",
|
|
"inlineSourceMap": true,
|
|
"outDir": "dist",
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"paths": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
},
|
|
"strictNullChecks": true,
|
|
"baseUrl": "./src",
|
|
"incremental": true
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"ts-node": {
|
|
"swc": true
|
|
}
|
|
} |