UNPKG

623 BJSONView Raw
1{
2 "compilerOptions": {
3 "target": "esnext",
4 "module": "esnext",
5 "strict": false,
6 "jsx": "preserve",
7 "importHelpers": true,
8 "moduleResolution": "node",
9 "experimentalDecorators": true,
10 "esModuleInterop": true,
11 "allowSyntheticDefaultImports": true,
12 "sourceMap": true,
13 "baseUrl": ".",
14 "types": [
15 "webpack-env"
16 ],
17 "paths": {
18 "@/*": [
19 "src/*"
20 ]
21 },
22 "lib": [
23 "esnext",
24 "dom",
25 "dom.iterable",
26 "scripthost"
27 ]
28 },
29 "include": [
30 "src/**/*.ts",
31 "tests/**/*.ts",
32 ],
33 "exclude": [
34 "node_modules"
35 ]
36}