-
Notifications
You must be signed in to change notification settings - Fork 10
/
tsconfig.json
38 lines (38 loc) · 856 Bytes
/
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
31
32
33
34
35
36
37
38
{
"compilerOptions": {
"moduleResolution": "node",
"target": "ESNext",
"module": "commonjs",
"declaration": false,
"noImplicitAny": true,
"removeComments": true,
"experimentalDecorators": true,
"rootDir": ".",
"sourceMap": false,
"listFiles": true,
"newLine": "LF",
"noEmitOnError": true,
"strictNullChecks": false,
"esModuleInterop": true,
"skipLibCheck": true,
"allowJs": true,
"jsx": "react",
"types": [
"@types/wicg-file-system-access",
"user-agent-data-types",
"node",
"offscreencanvas",
],
"lib": [
"ESNext",
"dom",
"WebWorker"
],
"outDir": "dist",
},
"include": ["src/KotOR.ts", "src/types", "src/index.d.ts"],
"exclude": ["node_modules", "src/**/*.spec.ts"],
"paths" :{
"jison":["src/types/jison"],
}
}