diawi-nodejs-uploader/tsconfig.json

26 lines
505 B
JSON
Raw Normal View History

2020-09-24 09:33:04 +03:00
{
2020-09-24 15:23:44 +03:00
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"declaration": true,
"outDir": "./dist",
"strict": true,
"noImplicitAny": false,
"baseUrl": "./",
"paths": {
"@app/*": [
"src/*"
]
},
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
2020-09-24 09:33:04 +03:00
},
2020-09-24 15:23:44 +03:00
"include": [
2020-09-25 10:42:56 +03:00
"src/*"
2020-09-24 15:23:44 +03:00
],
"exclude": [
"node_modules",
"dist"
]
2020-09-24 09:33:04 +03:00
}