forked from pinqy520/yoga-layout-wasm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 793 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 793 Bytes
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": {
"allowJs": true,
"lib": ["es6", "dom"],
"module": "es6",
"moduleResolution": "node",
"target": "es2019",
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"pretty": true,
"noImplicitAny": true,
"noImplicitThis": true,
"alwaysStrict": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"sourceMap": true,
"skipLibCheck": true,
"esModuleInterop": true,
"declaration": true,
"baseUrl": ".",
"outDir": "./lib",
"rootDir": "./src",
"forceConsistentCasingInFileNames": true,
"stripInternal": true
},
"include": ["./src/**/*.ts"],
"exclude": ["node_modules", "*/<node_internals>/**/*"]
}