File tree Expand file tree Collapse file tree 3 files changed +23
-29
lines changed Expand file tree Collapse file tree 3 files changed +23
-29
lines changed Original file line number Diff line number Diff line change 1
1
{
2
+ "extends" : " ../tsconfig.base.json" ,
2
3
"compilerOptions" : {
3
4
"target" : " ES6" ,
4
5
"module" : " ESNext" ,
5
6
"lib" : [" DOM" , " ESNext" ],
6
7
"jsx" : " react" ,
7
- "strict" : true ,
8
- "noEmit" : true ,
9
- "allowJs" : true ,
10
- "checkJs" : false ,
11
- "esModuleInterop" : true ,
12
- "skipLibCheck" : true ,
13
- "moduleResolution" : " node" ,
14
- "resolveJsonModule" : true ,
15
- "allowSyntheticDefaultImports" : true ,
16
- "forceConsistentCasingInFileNames" : true ,
17
-
18
- // From https://www.typescriptlang.org/docs/handbook/babel-with-typescript.html to use Babel for transpiling, tsc for types
19
- // Ensure that .d.ts files are created by tsc, but not .js files
20
- "declaration" : true ,
21
- "emitDeclarationOnly" : true ,
22
- // Ensure that Babel can safely transpile files in the TypeScript project
23
- "isolatedModules" : true
24
8
},
25
- "include" : [" **/*" ],
26
- "exclude" : [
27
- " ../node_modules" ,
28
- " ../node_modules/@types" ,
29
- ]
30
9
}
Original file line number Diff line number Diff line change
1
+ {
2
+ "compilerOptions" : {
3
+ "strict" : true ,
4
+ "allowJs" : true ,
5
+ "checkJs" : false ,
6
+ "esModuleInterop" : true ,
7
+ "skipLibCheck" : true ,
8
+ "moduleResolution" : " node" ,
9
+ "resolveJsonModule" : true ,
10
+ "allowSyntheticDefaultImports" : true ,
11
+ "forceConsistentCasingInFileNames" : true ,
12
+
13
+ // From https://www.typescriptlang.org/docs/handbook/babel-with-typescript.html to use Babel for transpiling, tsc for types
14
+ // Ensure that .d.ts files are created by tsc, but not .js files
15
+ "declaration" : true ,
16
+ "emitDeclarationOnly" : true ,
17
+ // Ensure that Babel can safely transpile files in the TypeScript project
18
+ "isolatedModules" : true
19
+ },
20
+ "include" : [" **/*" ],
21
+ "exclude" : [" ../node_modules" ]
22
+ }
Original file line number Diff line number Diff line change 4
4
{ "path" : " client" },
5
5
// { "path": "server" }
6
6
],
7
- "exclude" : [
8
- " node_modules" ,
9
- " node_modules/@types" ,
10
- " ./node_modules/@types" ,
11
- " dist" ,
12
- " build"
13
- ]
14
7
}
You can’t perform that action at this time.
0 commit comments