mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-09 16:12:17 +00:00
27 lines
626 B
JSON
27 lines
626 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"checkJs": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext", "ScriptHost"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"noEmit": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"strictNullChecks": true,
|
|
"target": "ESNext",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"tgui/*": ["packages/tgui/*"],
|
|
"common/*": ["packages/common/*"]
|
|
}
|
|
},
|
|
"include": ["./*.d.ts", "./packages"]
|
|
}
|