latterworks commited on
Commit
f455eaa
·
verified ·
1 Parent(s): c229454

Update tsconfig.json

Browse files
Files changed (1) hide show
  1. tsconfig.json +10 -12
tsconfig.json CHANGED
@@ -1,19 +1,17 @@
1
  {
2
  "compilerOptions": {
3
- "target": "es2018",
4
  "module": "commonjs",
5
- "lib": ["es2018", "dom"],
 
 
6
  "strict": true,
 
 
7
  "esModuleInterop": true,
8
  "skipLibCheck": true,
9
- "forceConsistentCasingInFileName": true,
10
- "outDir": "./dist",
11
- "rootDir": "./src"
12
  },
13
- "include": [
14
- "src/**/*"
15
- ],
16
- "exclude": [
17
- "node_modules"
18
- ]
19
- }
 
1
  {
2
  "compilerOptions": {
3
+ "target": "ES2020",
4
  "module": "commonjs",
5
+ "lib": ["ES2020"],
6
+ "outDir": "./lib",
7
+ "rootDir": "./src",
8
  "strict": true,
9
+ "experimentalDecorators": true,
10
+ "emitDecoratorMetadata": true,
11
  "esModuleInterop": true,
12
  "skipLibCheck": true,
13
+ "forceConsistentCasingInFileNames": true
 
 
14
  },
15
+ "include": ["src/**/*"],
16
+ "exclude": ["node_modules", "lib"]
17
+ }