We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2acf371 commit d7072d0Copy full SHA for d7072d0
config/tsconfig.json
@@ -15,12 +15,11 @@
15
"allowUnreachableCode": false,
16
"allowUnusedLabels": false,
17
"esModuleInterop": true,
18
- "experimentalDecorators": true,
19
"forceConsistentCasingInFileNames": true,
20
"jsx": "react",
21
"lib": ["ESNext"],
22
- "module": "ESNext",
23
- "moduleResolution": "Node",
+ "module": "NodeNext",
+ "moduleResolution": "NodeNext",
24
"noEmit": false,
25
"noFallthroughCasesInSwitch": true,
26
"noImplicitReturns": true,
example/tsconfig.json
@@ -1,4 +1,7 @@
1
{
2
"extends": "../config/tsconfig.json",
3
- "include": ["src", "index.js"]
+ "include": ["src", "index.js"],
4
+ "compilerOptions": {
5
+ "experimentalDecorators": true
6
+ }
7
}
0 commit comments