UNPKG

757 BJSONView Raw
1{
2 "compilerOptions": {
3 "target": "es2015",
4 "module": "commonjs",
5 "lib": ["dom", "es2015"],
6 "inlineSourceMap": false,
7 "outDir": "./dist",
8 "rootDir": "./src",
9 "moduleResolution": "node",
10 "skipLibCheck": true,
11 "removeComments": true,
12 "noImplicitAny": true,
13 "strictNullChecks": true,
14 "strictFunctionTypes": true,
15 "noImplicitThis": true,
16 "noUnusedLocals": true,
17 "noUnusedParameters": true,
18 "noImplicitReturns": true,
19 "noFallthroughCasesInSwitch": true,
20 "allowSyntheticDefaultImports": true,
21 "esModuleInterop": true,
22 "emitDecoratorMetadata": true,
23 "experimentalDecorators": true,
24 "resolveJsonModule": true
25 },
26 "exclude": ["node_modules"],
27 "files": ["./src/main.ts"]
28}