-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
31 lines (31 loc) · 895 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
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ESNext", "DOM"],
"moduleResolution": "Bundler",
"strict": true,
"sourceMap": true,
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"noEmit": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"skipLibCheck": true,
"paths": {
"text-to-canvas": ["./src/lib/index.ts"]
}
},
"include": [
"build/**/*.ts",
"build/**/*.mts",
"src/**/*.ts",
"src/**/*.mts"
// think twice about including "src/**/*.vue" here for use with typescript-eslint
// because you'll hit this and for a demo, it's just not worth it:
// https://stackoverflow.com/questions/64051706/eslint-doesnt-believe-that-ive-included-vue-files-in-my-tsconfig
]
}