-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
35 lines (35 loc) · 1.14 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"composite": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ES6", "DOM"],
"module": "CommonJS",
"moduleResolution": "node",
"noEmitOnError": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"outDir": "./dist",
"paths": {
"*": ["node_modules/*"]
},
"resolveJsonModule": true,
"removeComments": true,
"skipLibCheck": true,
"sourceMap": false,
"target": "ESNext",
"typeRoots": ["node_modules/@types"]
},
"compileOnSave": true,
"exclude": ["node_modules/*", "dist", "build", "static", "**/*.spec.ts", "**/*.test.ts"],
"include": ["eslint.config.mjs", "webpack.*.ts", "**/webpack.common.ts", "**/webpack.dev.ts", "**/webpack.prod.ts"],
"references": [
{ "path": "chromium/tsconfig.json" },
{ "path": "firefox/tsconfig.json" }
]
}