-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.compiler.json
30 lines (30 loc) · 1.02 KB
/
tsconfig.compiler.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
{
"compilerOptions": {
"module": "commonjs",
"target": "ES5",
"experimentalDecorators": true,
"strict": false,
"emitDecoratorMetadata": true,
"inlineSourceMap": true,
"allowUnreachableCode": true,
"noImplicitReturns": false,
"noImplicitAny": false,
"removeComments": false,
"allowUnusedLabels": true,
"allowUmdGlobalAccess": true,
"inlineSources": false,
"allowJs": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"lib": ["DOM", "ES7", "DOM.Iterable", "ES2015", "ESNext", "ES2016", "ES2017", "ES2018", "ES2019", "ES2020"],
"rootDir": "./libs",
"outDir": "./dist",
"noLib": false,
"esModuleInterop": true,
"importHelpers": true
},
"buildOnSave": true,
"compileOnSave": true,
"exclude": ["./plugins/**/*", "./typings/**/*", "./node_modules/**/*", "./libs/compiler/**/*"],
"include": ["./libs/index.ts", "./libs/src/compiler/**/*"]
}