Skip to content
Snippets Groups Projects
tsconfig.json 1.07 KiB
Newer Older
	"extends": "../../tsconfig.base.json",
	"compilerOptions": {
		"target": "es2018",
		"lib": ["esnext", "dom"],

		"allowJs": true,
		"checkJs": false,
		"jsx": "react",
		"noEmit": true,

		/* Strict Type-Checking Options */
		"strictPropertyInitialization": false,

		/* Additional Checks */
		"noImplicitReturns": false,
		"noFallthroughCasesInSwitch": false,

		/* Module Resolution Options */
		"baseUrl": ".",
		"paths": {
			/* Support absolute /imports/* with a leading '/' */
			"meteor/*": ["./node_modules/@types/meteor/*", ".meteor/local/types/packages.d.ts"]
		"preserveSymlinks": true

		// "sourceMap": true,
		// "declaration": true,
		// "removeComments": false,
		// "emitDecoratorMetadata": true,
		// "experimentalDecorators": true,
	},
	"include": [
		"./**/*",
		"./.storybook/**/*",
		"./jest.config.ts",
		"./.scripts/**/*"
	],
	"exclude": [
		"./.meteor/**",
		"./imports/client/**",
		"**/dist/**",
		// "./ee/server/services/**"