forked from BCIT-DDC/web-extension-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
30 lines (29 loc) · 1.02 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
{
"compilerOptions": {
"target": "ES5",
"module": "ESNext",
"lib": ["dom", "dom.iterable", "ESNext"],
"outDir": "./dist/js",
"rootDir": "./",
"strict": true,
"strictNullChecks": false,
"baseUrl": "./",
"paths": {
"@components/*": ["src/components/*"],
},
"jsx": "react",
"moduleResolution": "node",
"declaration": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"pretty": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"types": ["jest", "node"],
"typeRoots": ["node_modules/@types" ]
},
"include": ["src/**/*.ts", "tests/**/*.ts", "src/**/*.tsx", "tests/**/*.tsx", "src/**/*.json", "typings.d.ts"],
"exclude": ["node_modules"]
}