generated from PluginFinchy/Figma-Vue3-Template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
30 lines (30 loc) · 867 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
{
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"target": "es5",
"module": "commonjs",
"jsx": "react",
"sourceMap": true,
"strict": false,
"strictNullChecks": true,
"moduleResolution": "node",
"esModuleInterop": true,
"preserveSymlinks": true,
"noImplicitAny": true,
"resolveJsonModule": true,
"isolatedModules": true,
"lib": ["DOM", "ES2019"],
"typeRoots": ["./node_modules/@types", "./node_modules/@figma"]
// // this aligns with Vue's browser support
// "target": "es6",
// // if using webpack 2+ or rollup, to leverage tree shaking:
// "module": "es2015",
// "moduleResolution": "node",
// "jsx": "preserve",
// "skipLibCheck": true,
// "allowSyntheticDefaultImports": true,
// "esModuleInterop": true,
// "lib": ["dom", "es2015"],
}
}