forked from misterpotts/fabricate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
35 lines (35 loc) · 900 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
{
"compilerOptions": {
"moduleResolution": "node",
"esModuleInterop": true,
"allowJs": true,
"baseUrl": "./",
"rootDir": "./src",
"outDir": "./dist",
"strict": true,
"strictNullChecks": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"forceConsistentCasingInFileNames": true,
"sourceMap": true,
"noErrorTruncation": true,
"target": "ES6",
"lib": ["DOM", "ES6", "ES2017", "ES2018"],
"types": ["foundry-pc-types", "node", "mocha", "chai", "sinon", "handlebars"],
"typeRoots": [
"./typings"
],
"allowUmdGlobalAccess": true
},
"include": ["./src/**/*.ts", "./typings/**/*.ts"],
"exclude": ["node_modules", "./gulpfile.ts"],
"files": [
"./typings/dnd5e.d.ts"
],
"ts-node": {
"files": true,
"transpileOnly": true
}
}