-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
43 lines (43 loc) · 1.61 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
40
41
42
43
{
"compilerOptions": {
"rootDir": ".",
"allowSyntheticDefaultImports": true,
"allowJs": true,
"baseUrl": ".",
"esModuleInterop": true,
"declaration": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"module": "ESNext",
"moduleResolution": "node",
"noUncheckedIndexedAccess": true,
"outDir": "dist",
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "ESNext",
"types": ["vite/client"],
"paths": {
"src": ["./src"],
"@bigmistqke/repl": ["./src/runtime"],
"@bigmistqke/repl/element": ["./src/element"],
"@bigmistqke/repl/element/*": ["./src/element/*"],
"@bigmistqke/repl/element/tm-editor": ["./src/element/editor/tm.tsx"],
"@bigmistqke/repl/element/monaco-editor": ["./src/element/editor/monaco.tsx"],
"@bigmistqke/repl/plugins/*": ["./src/plugins/*"],
"@bigmistqke/repl/editor/monaco": ["src/solid/editor/monaco"],
"@bigmistqke/repl/editor/monaco/themes/*": ["src/solid/editor/monaco/themes/*"],
"@bigmistqke/repl/editor/shiki": ["src/solid/editor/textmate"],
"@bigmistqke/repl/transform/*": ["src/transform/*"],
"@bigmistqke/repl/transform-module-paths/*": ["./src/transform-module-paths/*"],
"@bigmistqke/repl/extensions/css-module": ["src/extensions/css-module"],
"@bigmistqke/repl/extensions/wat": ["src/extensions/wat"],
"@bigmistqke/repl/std/*": ["src/std/*"]
}
},
"include": ["src", "dist"]
}