-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
25 lines (25 loc) · 876 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
{
"compilerOptions": {
"module": "CommonJS",
"noImplicitAny": true, // more robust type checking rules
"removeComments": false,
"sourceMap": true,
"esModuleInterop": true,
"moduleResolution": "node", // allows us to import without errors
"target": "ES6",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"outDir": "dist",
"baseUrl": ".", // tells compiler to search from same directory as tsconfig.json
"paths": {
"*": ["node_modules/*"]
}
},
"include": [
"src/**/*" // ** means match all files in src's subdirectories recursively
, "test/api/LockerService.ts" ],
"exclude": [
"node_modules",
"test/**/*.ts" // tests are executed via ts-node-dev using jit compilation for simplicity.
]
}