-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathtsconfig.json
27 lines (27 loc) · 828 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
{
"compilerOptions": {
"baseUrl": ".",
"paths": { "*": ["types/*"] },
"allowJs": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "es6",
"target": "ES6",
"sourceMap": true,
"outDir": "./.tmp/build/",
"moduleResolution": "node",
"declaration": true,
"noImplicitThis": true,
"noImplicitAny": true,
"alwaysStrict": true,
"strictBindCallApply": true,
"strictNullChecks": true,
"strictFunctionTypes": false,
"strictPropertyInitialization": false,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"removeComments": true,
"strict": true
},
"files": ["src/hierarchySlicer.ts", "test/visualTest.ts"]
}