bilca commited on
Commit
5342126
·
verified ·
1 Parent(s): 352fb85

Create tsconfig.json

Browse files
Files changed (1) hide show
  1. tsconfig.json +9 -13
tsconfig.json CHANGED
@@ -1,17 +1,13 @@
1
  {
2
  "compilerOptions": {
3
- /* Visit https://aka.ms/tsconfig to read more about this file */
4
-
5
- "target": "ES2019", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
6
- "module": "ESNext", /* Specify what module code is generated. */
7
- "lib": ["ESNext", "WebWorker", "DOM"], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
8
- "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
9
- "outDir": "./dist", /* Specify an output folder for all emitted files. */
10
- "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
11
- "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
12
- "strict": true, /* Enable all strict type-checking options. */
13
- "skipLibCheck": true /* Skip type checking all .d.ts files. */
14
  },
15
- "include": ["src/**/*"],
16
- "exclude": ["src/wasm/*"]
17
  }
 
1
  {
2
  "compilerOptions": {
3
+ "target": "ES2020",
4
+ "module": "ES2020",
5
+ "moduleResolution": "node",
6
+ "outDir": "dist",
7
+ "rootDir": "src",
8
+ "declaration": true,
9
+ "strict": true,
10
+ "esModuleInterop": true
 
 
 
11
  },
12
+ "include": ["src"]
 
13
  }