mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-22 19:47:47 +01:00
33 lines
948 B
JSON
33 lines
948 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"checkJs": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"noEmit": true,
|
|
"types": ["webpack-env", "wicg-file-system-access"],
|
|
"paths": {
|
|
"tgui": ["./packages/tgui"],
|
|
"tgui/*": ["./packages/tgui/*"],
|
|
"tgui-panel": ["./packages/tgui-panel"],
|
|
"tgui-panel/*": ["./packages/tgui-panel/*"],
|
|
"tgui-say": ["./packages/tgui-say"],
|
|
"tgui-say/*": ["./packages/tgui-say/*"],
|
|
"tgui-dev-server": ["./packages/tgui-dev-server"],
|
|
"tgui-dev-server/*": ["./packages/tgui-dev-server/*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"strictNullChecks": true,
|
|
"target": "ESNext"
|
|
},
|
|
"include": ["./*.d.ts", "./packages", "happydom.ts"]
|
|
}
|