mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-19 23:16:21 +00:00
28b4a26d64
Replace the explicit per-package @nitrots/<pkg> entries with a single
'@nitrots/*' -> ../Nitro_Render_V3/packages/*/src/index.ts wildcard
(plus the umbrella '@nitrots/nitro-renderer' entry). Functionally
identical to a6e07c5 but far less verbose; yarn typecheck clean,
Vitest 545/545.
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": false,
|
|
"module": "ES2022",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"paths": {
|
|
"@layout/*": [
|
|
"./src/layout/*"
|
|
],
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"pixi.js": [
|
|
"../Nitro_Render_V3/node_modules/pixi.js"
|
|
],
|
|
"@nitrots/nitro-renderer": [
|
|
"../Nitro_Render_V3/index.ts"
|
|
],
|
|
"@nitrots/*": [
|
|
"../Nitro_Render_V3/packages/*/src/index.ts"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src",
|
|
"node_modules/@nitrots/nitro-renderer/src/**/*.ts"
|
|
]
|
|
}
|