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