-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
39 lines (39 loc) · 1.27 KB
/
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
39
{
"extends": "@schoero/configs/tsconfig",
"compilerOptions": {
"baseUrl": ".",
"lib": ["ESNext", "DOM"],
"noImplicitAny": false,
"outDir": "./lib",
"paths": {
"unwritten:*": ["src/*"],
"unwritten:api:*": ["src/api/*"],
"unwritten:bin:*": ["src/bin/*"],
"unwritten:compiler:*": ["src/compiler/*"],
"unwritten:interpreter:*": ["src/interpreter/*"],
"unwritten:interpreter:entities": ["src/interpreter/ast/entities/index.js"],
"unwritten:interpreter:types": ["src/interpreter/ast/types/index.js"],
"unwritten:logger:*": ["src/platform/logger/*"],
"unwritten:renderer:*": ["src/renderer/*"],
"unwritten:renderer:html:*": ["src/renderer/markup/html/*"],
"unwritten:renderer:json:*": ["src/renderer/json/*"],
"unwritten:renderer:markdown:*": ["src/renderer/markup/markdown/*"],
"unwritten:renderer:ts*": ["src/renderer/typescript/*"],
"unwritten:root:*": ["*"],
"unwritten:tests:*": ["tests/*"],
"unwritten:types:*": ["src/type-definitions/*"],
"unwritten:utils:*": ["src/utils/*"]
},
"target": "ES2020"
},
"include": [
"src/**/*.ts",
"tests/**/*.ts",
"vite.config.ts",
"vite.config.browser.ts"
],
"exclude": [
"node_modules",
"lib"
]
}