43 lines
1.2 KiB
JSON
43 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "src",
|
|
"noErrorTruncation": true,
|
|
"paths": {
|
|
"@kittycad/codemirror-lsp-client": [
|
|
"../packages/codemirror-lsp-client/src/index.ts"
|
|
],
|
|
"@kittycad/codemirror-lang-kcl": [
|
|
"../packages/codemirror-lang-kcl/src/index.ts"
|
|
],
|
|
"@rust/*": ["../rust/*"],
|
|
"/*": ["src/*"]
|
|
},
|
|
"types": [
|
|
"vite/client",
|
|
"@types/wicg-file-system-access",
|
|
"node",
|
|
"mocha",
|
|
"@lezer/generator"
|
|
],
|
|
"target": "esnext",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"composite": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx"
|
|
},
|
|
"include": ["src", "e2e", "packages", "*.ts", "rust"],
|
|
"exclude": ["node_modules", "./*.grammar", "vite.config.ts", ".vscode-test"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|