forked from ipfs/ipfs-companion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
30 lines (29 loc) · 1.06 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"transpileOnly": true,
"compilerOptions": {
"typeRoots" : ["./src/types"],
"lib": ["DOM", "ESNext"],
"target": "ESNext",
"allowJs": true,
"checkJs": true,
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
/* Type Checking */
"strict": true,
"skipLibCheck": false,
"emitDeclarationOnly": true,
"declaration": true,
"moduleResolution": "nodenext",
"allowSyntheticDefaultImports": true,
"module": "NodeNext",
"importHelpers": true,
"noImplicitAny": true,
},
"ts-node": {
"transpileOnly": true,
"files": true,
"noImplicitAny": false
},
"include": ["add-on/src/**/*.js", "add-on/src/**/*.ts"]
}