17 lines
412 B
JSON
17 lines
412 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"paths": {
|
|
"*": ["node_modules/*"]
|
|
},
|
|
"jsx": "react-jsx",
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["examples/**/*.js", "examples/**/*.svelte", "examples/**/*.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|