1 |
{ |
2 |
"compilerOptions": { |
3 |
"incremental": true, |
4 |
"target": "ES2022", |
5 |
"module": "CommonJS", |
6 |
"types": ["node"], |
7 |
"lib": ["ES2022", "DOM"], |
8 |
"resolveJsonModule": true, |
9 |
"newLine": "lf", |
10 |
"noEmitHelpers": true, |
11 |
"noEmitOnError": true, |
12 |
"allowSyntheticDefaultImports": true, |
13 |
"esModuleInterop": true, |
14 |
"forceConsistentCasingInFileNames": true, |
15 |
"strict": true, |
16 |
"skipLibCheck": true, |
17 |
"emitDecoratorMetadata": true, |
18 |
"experimentalDecorators": true, |
19 |
"paths": { |
20 |
"@/*": ["../src/main/typescript/*"], |
21 |
"@framework/*": ["../src/framework/typescript/*"] |
22 |
} |
23 |
}, |
24 |
"include": ["./**/*.ts", "../src/**/*.ts"] |
25 |
} |