cockpit-tailscale/tsconfig.json

27 lines
623 B
JSON
Raw Permalink Normal View History

2023-06-17 09:45:41 -06:00
{
"compilerOptions": {
2023-06-21 22:40:02 -06:00
"baseUrl": ".",
"rootDir": ".",
"target": "esnext",
"module": "commonjs",
"moduleResolution": "node",
"typeRoots": ["@types"],
"allowJs": true,
"declaration": true,
"sourceMap": true,
"outDir": "dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": false,
"skipLibCheck": true,
"lib": ["es6", "dom"],
"jsx": "react",
"paths": {
"@app/*": ["src/*"],
"@assets/*": ["node_modules/@patternfly/react-core/dist/styles/assets/*"]
}
2023-06-17 09:45:41 -06:00
},
"include": ["src"],
2023-06-21 22:40:02 -06:00
"exclude": ["node_modules"]
2023-06-17 09:45:41 -06:00
}