mirror of
https://github.com/lumehq/lume.git
synced 2025-03-17 21:32:32 +01:00
36 lines
898 B
JSON
36 lines
898 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@app/*": ["src/app/*"],
|
|
"@components/*": ["src/components/*"],
|
|
"@stores/*": ["src/stores/*"],
|
|
"@utils/*": ["src/utils/*"],
|
|
"@assets/*": ["src/assets/*"],
|
|
"@renderer/*": ["src/renderer/*"]
|
|
},
|
|
"target": "es2017",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"incremental": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"strictNullChecks": false
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|