mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 08:45:38 +02:00
36 lines
787 B
JSON
36 lines
787 B
JSON
{
|
|
"extends": "@nestri/typescript-config/base.json",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"target": "ES2017",
|
|
"module": "ES2022",
|
|
"lib": ["es2022", "DOM", "WebWorker", "DOM.Iterable"],
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "@builder.io/qwik",
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "Bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"incremental": true,
|
|
"isolatedModules": true,
|
|
"outDir": "tmp",
|
|
"noEmit": true,
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
}
|
|
},
|
|
"files": [
|
|
".eslintrc.cjs"
|
|
],
|
|
"include": [
|
|
"src",
|
|
"./*.d.ts",
|
|
"./*.config.ts",
|
|
"./*.config.js"
|
|
]
|
|
} |