groupomania/tsconfig.json

35 lines
789 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"target": "es2017",
"lib": [
"esnext"
],
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"skipDefaultLibCheck": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"outDir": "./dist",
"strictPropertyInitialization": false,
"paths": {
"@/*": [
"./src/*"
],
"@@/*": [
"./*"
]
},
"typeRoots": [
"src/types"
],
},
"ts-node": {
"require": [
"tsconfig-paths/register"
]
}
}