2
1
mirror of https://github.com/Thream/file-uploads-api.git synced 2024-07-06 21:00:10 +02:00
file-uploads-api/tsconfig.json

19 lines
391 B
JSON
Raw Normal View History

2022-04-08 17:54:56 +02:00
{
2023-01-11 00:24:19 +01:00
"extends": "@tsconfig/strictest/tsconfig.json",
2022-04-08 17:54:56 +02:00
"compilerOptions": {
"target": "ESNext",
"lib": ["ESNext"],
2023-08-24 22:09:45 +02:00
"module": "NodeNext",
"moduleResolution": "NodeNext",
2022-04-08 17:54:56 +02:00
"outDir": "./build",
"rootDir": "./src",
2023-07-22 16:24:52 +02:00
"baseUrl": ".",
"paths": {
"#src/*": ["./src/*"]
},
2022-04-08 17:54:56 +02:00
"noEmit": true,
2023-01-11 00:24:19 +01:00
"exactOptionalPropertyTypes": false,
"checkJs": false
2022-04-08 17:54:56 +02:00
}
}