You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rap2-delos/tsconfig.json

32 lines
701 B
JSON

{
"compilerOptions": {
"outDir": "./dist",
"module": "commonjs",
"moduleResolution": "node",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"target": "es2019",
"removeComments": true,
"sourceMap": true,
"watch": false,
"baseUrl": "./src",
7 years ago
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": false,
"skipLibCheck": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitUseStrict": true,
"suppressImplicitAnyIndexErrors": true,
"rootDir": "./src",
"paths": {
"*": [
"node_modules/*",
"src/types/*"
]
}
},
"include": [
"src/**/*"
]
}