blob: b33bf20eb41a76abf8a1c708cd088b81c5fff718 [file] [log] [blame]
Issam E. Maghni0ef4a362022-10-05 23:20:16 +00001{
2 "compilerOptions": {
3 "incremental": true,
4 "target": "es2022",
5 "experimentalDecorators": true,
6 "emitDecoratorMetadata": true,
7 "module": "node16",
8 "rootDir": "src",
9 "sourceMap": true,
10 "outDir": "dist",
11 "isolatedModules": true,
12 "esModuleInterop": true,
13 "forceConsistentCasingInFileNames": true,
simond8ca2f22022-10-11 23:30:55 -040014 "skipLibCheck": true,
Issam E. Maghni0ef4a362022-10-05 23:20:16 +000015 "strict": true,
16 "noImplicitAny": true
17 },
18 "ts-node": {
19 "esm": true
20 }
21}