Skip to content

Commit 27a8580

Browse files
Issue #31 Remove base url from tsconfig file
Removed base url from tsconfig file
2 parents d9d8288 + 2d813ce commit 27a8580

1 file changed

Lines changed: 33 additions & 24 deletions

File tree

tsconfig.json

Lines changed: 33 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,36 @@
11
{
22
"compilerOptions": {
3-
"allowJs": true,
4-
"allowSyntheticDefaultImports": true,
5-
"baseUrl": "./src",
6-
"declaration": true,
7-
"emitDecoratorMetadata": true,
8-
"esModuleInterop": true,
9-
"experimentalDecorators": true,
10-
"forceConsistentCasingInFileNames": false,
11-
"inlineSourceMap": true,
12-
"inlineSources": true,
13-
"lib": ["dom", "dom.iterable", "esnext"],
14-
"jsx": "react",
15-
"module": "commonjs",
16-
"moduleResolution": "node",
17-
"noUnusedParameters": true,
18-
"outDir": "./dist",
19-
"removeComments": true,
20-
"resolveJsonModule": true,
21-
"skipLibCheck": true,
22-
"strict": true,
23-
"target": "es5"
3+
"allowJs": true,
4+
"allowSyntheticDefaultImports": true,
5+
"declaration": true,
6+
"emitDecoratorMetadata": true,
7+
"esModuleInterop": true,
8+
"experimentalDecorators": true,
9+
"forceConsistentCasingInFileNames": false,
10+
"inlineSourceMap": true,
11+
"inlineSources": true,
12+
"lib": [
13+
"dom",
14+
"dom.iterable",
15+
"esnext"
16+
],
17+
"jsx": "react",
18+
"module": "commonjs",
19+
"moduleResolution": "node",
20+
"noUnusedParameters": true,
21+
"outDir": "./dist",
22+
"removeComments": true,
23+
"resolveJsonModule": true,
24+
"skipLibCheck": true,
25+
"strict": true,
26+
"target": "es5"
2427
},
25-
"exclude": ["**/*.test.*", "node_modules", "src/setupTests.ts"],
26-
"include": ["src"]
27-
}
28+
"exclude": [
29+
"**/*.test.*",
30+
"node_modules",
31+
"src/setupTests.ts"
32+
],
33+
"include": [
34+
"src"
35+
]
36+
}

0 commit comments

Comments
 (0)