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

15 lines
315 B
JSON
Raw Permalink 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",
"module": "ESNext",
"lib": ["ESNext"],
"moduleResolution": "node",
"outDir": "./build",
"rootDir": "./src",
"noEmit": true,
2023-01-11 00:24:19 +01:00
"exactOptionalPropertyTypes": false,
"checkJs": false
2022-04-08 17:54:56 +02:00
}
}