-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
tsconfig.json
48 lines (48 loc) · 2.2 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
44
45
46
47
48
{
"compilerOptions": {
"paths": {
"@master/css-cli": [ "./node_modules/@master/css-cli/src" ],
"@master/create-css": [ "./node_modules/@master/create-css/src" ],
"@master/css": [ "./node_modules/@master/css/src" ],
"@master/eslint-config-css": [ "./node_modules/@master/eslint-config-css/src" ],
"@master/eslint-plugin-css": [ "./node_modules/@master/eslint-plugin-css/src" ],
"@master/css-extractor": [ "./node_modules/@master/css-extractor/src" ],
"@master/css-extractor.vite": [ "./node_modules/@master/css-extractor.vite/src" ],
"@master/css-extractor.webpack": [ "./node_modules/@master/css-extractor.webpack/src" ],
"@master/css-language-server": [ "./node_modules/@master/css-language-server/src" ],
"@master/css-language-service": [ "./node_modules/@master/css-language-service/src" ],
"@master/css-explore-config": [ "./node_modules/@master/css-explore-config/src" ],
"@master/css.nuxt": [ "./node_modules/@master/css.nuxt/src/module.ts" ],
"@master/css.react": [ "./node_modules/@master/css.react/src" ],
"@master/css-runtime": [ "./node_modules/@master/css-runtime/src" ],
"@master/css-server": [ "./node_modules/@master/css-server/src" ],
"@master/css.svelte": [ "./node_modules/@master/css-svelte/src/lib" ],
"@master/css-validator": [ "./node_modules/@master/css-validator/src" ],
"@master/css.vue": [ "./node_modules/@master/css.vue/src" ],
"master-css-vscode": [ "./node_modules/master-css-vscode/src" ],
"shared/*": [ "./node_modules/shared/*" ],
"~/*": [ "./*" ],
},
"target": "esnext",
"module": "esnext",
"moduleResolution": "Bundler",
"lib": [
"esnext",
"dom",
"dom.iterable"
],
"types": [
"node",
"@types/jest"
],
"esModuleInterop": true,
"strict": true,
"resolveJsonModule": true,
"allowJs": true,
"skipLibCheck": true
},
"exclude": [
"**/dist/**",
"**/node_modules/**"
]
}