24 lines
481 B
JSON
24 lines
481 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"noImplicitAny": true,
|
|
"target": "ES6",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"allowJs": true,
|
|
"outDir": "build",
|
|
"strict": true,
|
|
"types": ["vite/client"],
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"plugins": [
|
|
{
|
|
"name": "typescript-eslint-language-service"
|
|
}
|
|
],
|
|
"lib": ["ES2021", "DOM"],
|
|
},
|
|
"include": ["src"]
|
|
}
|