idlize
/
tsconfig.json
20 строк · 526.0 Байт
1{
2"compilerOptions": {
3"target": "es2017",
4"lib": ["ESNext", "ESNext.WeakRef"],
5"moduleResolution": "node",
6"composite": true,
7"incremental": true,
8"declarationMap": true,
9"sourceMap": true,
10"declaration": true,
11"noEmitOnError": true,
12"strict": true,
13"skipLibCheck": true,
14"removeComments": false,
15"outDir": "build/lib",
16"rootDirs": ["src"],
17"module": "CommonJS",
18},
19"include": ["src/**/*"],
20}
21