tower-lsp-web-demo/tsconfig.json

22 lines
452 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"target": "ES2022",
"lib": ["DOM", "ES2022"],
"module": "ES2022",
"moduleResolution": "node",
"newLine": "lf",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
// "sourceMap": true,
},
"exclude": ["."],
"ts-node": {
"compilerOptions": {
"module": "CommonJS",
},
},
}