Files
setup-helm/tsconfig.json

15 lines
366 B
JSON
Raw Permalink Normal View History

2019-10-04 12:16:40 +05:30
{
"compilerOptions": {
"target": "ES2020",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"rootDir": "./src",
"outDir": "./lib",
"noImplicitAny": false,
"skipLibCheck": true,
"noEmit": true,
"types": ["node", "vitest/globals"]
},
"exclude": ["node_modules", "**/*.test.ts", "vitest.config.ts"]
2019-10-04 12:16:40 +05:30
}