๐Ÿ“ฆ ionic-team / ionic-framework

๐Ÿ“„ tsconfig.json ยท 28 lines
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{
  "compilerOptions": {
    "allowUnreachableCode": false,
    "allowSyntheticDefaultImports": true,
    "declaration": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "esModuleInterop": true,
    "lib": ["dom", "es2020"],
    "module": "ES2020",
    "moduleResolution": "bundler",
    "noImplicitAny": true,
    "noImplicitReturns": false,
    "noUnusedLocals": true,
    "noUnusedParameters": true,
    "outDir": "dist",
    "declarationDir": "dist/types",
    "removeComments": false,
    "sourceMap": true,
    "jsx": "react",
    "target": "es2017"
  },
  "include": ["src/**/*.ts", "src/**/*.tsx"],
  "exclude": ["./__tests__/**", "node_modules", "setupTests.ts"],
  "compileOnSave": false,
  "buildOnSave": false
}