2020-07-05 15:48:51 +02:00
|
|
|
{
|
2023-01-10 23:15:36 +01:00
|
|
|
"extends": "@tsconfig/strictest/tsconfig.json",
|
2020-07-05 15:48:51 +02:00
|
|
|
"compilerOptions": {
|
2021-06-30 13:49:18 +02:00
|
|
|
"target": "ESNext",
|
2023-08-21 22:09:24 +02:00
|
|
|
"module": "NodeNext",
|
2021-06-30 13:49:18 +02:00
|
|
|
"lib": ["ESNext"],
|
2023-08-21 22:09:24 +02:00
|
|
|
"moduleResolution": "NodeNext",
|
2021-06-09 20:31:45 +02:00
|
|
|
"outDir": "./build",
|
|
|
|
"rootDir": "./cli",
|
2022-02-19 18:30:29 +01:00
|
|
|
"noEmit": true,
|
2023-01-10 23:15:36 +01:00
|
|
|
"checkJs": false,
|
|
|
|
"exactOptionalPropertyTypes": false
|
2021-06-09 20:31:45 +02:00
|
|
|
},
|
2021-06-30 13:49:18 +02:00
|
|
|
"exclude": ["node_modules", "challenges", "templates", "temp", "tmp"]
|
2020-07-05 15:48:51 +02:00
|
|
|
}
|