dolphins7.skeleton/twenty-frontend/tsconfig.json
2024-02-08 17:58:55 -03:00

17 lines
387 B
JSON

{
"compilerOptions": {
"strict": true,
"strictNullChecks": false,
"module": "commonjs",
"target": "ES2020",
"noImplicitAny": true,
"moduleResolution": "node",
"esModuleInterop": true,
"jsx": "react",
"allowJs": true,
"lib": [ "ES2022", "DOM" ],
"allowUmdGlobalAccess": true,
"baseUrl": "./src",
"paths": { "~/*": ["./js/*"] },
}
}