-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
29 lines (29 loc) · 884 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
{
"extends": "@tsconfig/svelte/tsconfig.json",
"compilerOptions": {
"target": "ES2019",
"lib": ["es2020", "dom", "DOM.Iterable", "webworker"],
"baseUrl": "./src",
"module": "ES2020",
"paths": {
"@assets/*": ["./assets/*"],
"@/*": ["./*"],
"@options/*": ["./pages/options/*"]
},
"resolveJsonModule": true,
"types": ["vitest/globals", "chrome"],
"allowJs": false,
"strictNullChecks": true,
"outDir": "./dist",
"plugins": [{ "name": "typescript-svelte-plugin" }],
"verbatimModuleSyntax": false // fix error with TS5 in jest
},
"include": [
"./vite.config.ts",
"src/**/*",
"src/types/*",
"scripts/**/*", //
"src/test-utils/setup-tests.ts"
],
"exclude": ["node_modules/*", "dist/*"]
}