UNPKG

547 BJSONView Raw
1{
2 // ForkTSChecker uses the include to speed up typing
3 // "include": ["./src/**/*.{ts,tsx}"],
4 "compilerOptions": {
5 "baseUrl": ".",
6 "emitDecoratorMetadata": true,
7 "experimentalDecorators": true,
8 "forceConsistentCasingInFileNames": true,
9 "downlevelIteration": true,
10 "jsx": "react",
11 "lib": ["dom", "es2017"],
12 "module": "commonjs",
13 "moduleResolution": "node",
14 "skipLibCheck": true,
15 "sourceMap": true,
16 "strict": true,
17 "target": "es5",
18 "typeRoots": ["node_modules/@types", "./@types"]
19 }
20}