1 |
rakinar2 |
632 |
{ |
2 |
|
|
"compilerOptions": { |
3 |
|
|
"target": "ES2021", |
4 |
|
|
"experimentalDecorators": true, |
5 |
|
|
"module": "commonjs", |
6 |
|
|
"rootDir": "./src", |
7 |
|
|
"baseUrl": "./", |
8 |
|
|
"resolveJsonModule": true, |
9 |
|
|
"outDir": "./build", |
10 |
|
|
"newLine": "lf", |
11 |
|
|
"noEmitHelpers": true, |
12 |
|
|
"noEmitOnError": true, |
13 |
|
|
"allowSyntheticDefaultImports": true, |
14 |
|
|
"esModuleInterop": true, |
15 |
|
|
"forceConsistentCasingInFileNames": true, |
16 |
|
|
"noImplicitOverride": true, |
17 |
|
|
"strict": true, |
18 |
|
|
"skipLibCheck": true, |
19 |
|
|
"paths": { |
20 |
|
|
"@sudobot/*": ["node_modules/sudobot/build/out/main/typescript/*"], |
21 |
|
|
"@framework/*": ["node_modules/sudobot/build/out/framework/typescript/*"] |
22 |
|
|
} |
23 |
|
|
}, |
24 |
|
|
"exclude": ["./tmp", "./scripts", "./tests", "./build"] |
25 |
|
|
} |