new todo-backend
This commit is contained in:
26
todo-backend/tsconfig.json
Normal file
26
todo-backend/tsconfig.json
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "es6",
|
||||
"module": "commonjs",
|
||||
"checkJs": true,
|
||||
"outDir": "dist",
|
||||
"removeComments": true,
|
||||
"strict": true,
|
||||
"noImplicitAny": true,
|
||||
"alwaysStrict": true,
|
||||
"moduleResolution": "node",
|
||||
"baseUrl": "./",
|
||||
"esModuleInterop": true,
|
||||
"skipLibCheck": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"paths": {
|
||||
"@daos/*": ["src/daos/*"],
|
||||
"@entities/*": ["src/entities/*"],
|
||||
"@shared/*": ["src/shared/*"],
|
||||
"@server": ["src/Server"]
|
||||
}
|
||||
},
|
||||
"include": ["src/**/*.ts", "spec/**/*.ts"],
|
||||
"exclude": ["src/public/"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user